home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / tex / hdiff122.zip / CDELTA.BAT next >
DOS Batch File  |  1988-01-02  |  287b  |  13 lines

  1. echo off
  2. Rem usage: delta file version
  3. Rem E.g.,  delta hdiff 110
  4. Rem        expects hdiff.scc, hdiff.c; makes hdiff.110
  5. if x%1 == x goto usage
  6. if x%2 == x goto usage
  7. hdiff -e %1.scc %1.c %1.%2
  8. echo Delta file %1.%2 made
  9. goto exit
  10. :usage
  11. echo usage: delta file version
  12. :exit
  13.